home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / Perl / handy.h < prev    next >
Text File  |  1993-10-23  |  5KB  |  158 lines

  1. /* $RCSfile: handy.h,v $$Revision: 4.0.1.4 $$Date: 92/06/08 13:23:17 $
  2.  *
  3.  *    Copyright (c) 1991, Larry Wall
  4.  *
  5.  *    You may distribute under the terms of the Perl Artistic License,
  6.  *    as specified in the README file.
  7.  *
  8.  * $Log:    handy.h,v $
  9.  * Revision 4.0.1.4  92/06/08  13:23:17  lwall
  10.  * patch20: isascii() may now be supplied by a library routine
  11.  * patch20: Perl now distinguishes overlapped copies from non-overlapped
  12.  * 
  13.  * Revision 4.0.1.3  91/11/05  22:54:26  lwall
  14.  * patch11: erratum
  15.  * 
  16.  * Revision 4.0.1.2  91/11/05  17:23:38  lwall
  17.  * patch11: prepared for ctype implementations that don't define isascii()
  18.  * 
  19.  * Revision 4.0.1.1  91/06/07  11:09:56  lwall
  20.  * patch4: new copyright notice
  21.  * 
  22.  * Revision 4.0  91/03/20  01:22:15  lwall
  23.  * 4.0 baseline.
  24.  * 
  25.  */
  26.  
  27. #ifdef NULL
  28. #undef NULL
  29. #endif
  30. #ifndef I286
  31. #  define NULL 0
  32. #else
  33. #  define NULL 0L
  34. #endif
  35. #define Null(type) ((type)NULL)
  36. #define Nullch Null(char*)
  37. #define Nullfp Null(FILE*)
  38.  
  39. #ifdef UTS
  40. #define bool int
  41. #else
  42. #define bool char
  43. #endif
  44.  
  45. #ifdef TRUE
  46. #undef TRUE
  47. #endif
  48. #ifdef FALSE
  49. #undef FALSE
  50. #endif
  51. #define TRUE (1)
  52. #define FALSE (0)
  53.  
  54. #define Ctl(ch) (ch & 037)
  55.  
  56. #define strNE(s1,s2) (strcmp(s1,s2))
  57. #define strEQ(s1,s2) (!strcmp(s1,s2))
  58. #define strLT(s1,s2) (strcmp(s1,s2) < 0)
  59. #define strLE(s1,s2) (strcmp(s1,s2) <= 0)
  60. #define strGT(s1,s2) (strcmp(s1,s2) > 0)
  61. #define strGE(s1,s2) (strcmp(s1,s2) >= 0)
  62. #define strnNE(s1,s2,l) (strncmp(s1,s2,l))
  63. #define strnEQ(s1,s2,l) (!strncmp(s1,s2,l))
  64.  
  65. #if defined(CTYPE256) || (!defined(isascii) && !defined(HAS_ISASCII))
  66. #define isALNUM(c) (isalpha(c) || isdigit(c) || c == '_')
  67. #define isALPHA(c) isalpha(c)
  68. #define isSPACE(c) isspace(c)
  69. #define isDIGIT(c) isdigit(c)
  70. #define isUPPER(c) isupper(c)
  71. #define isLOWER(c) islower(c)
  72. #else
  73. #define isALNUM(c) (isascii(c) && (isalpha(c) || isdigit(c) || c == '_'))
  74. #define isALPHA(c) (isascii(c) && isalpha(c))
  75. #ifdef macintosh
  76. #define isSPACE(c) ((isascii(c) && isspace(c)) || c == '\312')
  77. #else
  78. #define isSPACE(c) (isascii(c) && isspace(c))
  79. #endif
  80. #define isDIGIT(c) (isascii(c) && isdigit(c))
  81. #define isUPPER(c) (isascii(c) && isupper(c))
  82. #define isLOWER(c) (isascii(c) && islower(c))
  83. #endif
  84.  
  85. #ifndef macintosh
  86. #define MEM_SIZE unsigned int
  87. #endif
  88.  
  89. /* Line numbers are unsigned, 16 bits. */
  90. typedef unsigned short line_t;
  91. #ifdef lint
  92. #define NOLINE ((line_t)0)
  93. #else
  94. #define NOLINE ((line_t) 65535)
  95. #endif
  96.  
  97. #ifndef lint
  98. #ifndef LEAKTEST
  99. #ifndef safemalloc
  100. char *safemalloc();
  101. char *saferealloc();
  102. void safefree();
  103. #endif
  104. #ifndef MSDOS
  105. #define New(x,v,n,t)  (v = (t*)safemalloc((MEM_SIZE)((n) * sizeof(t))))
  106. #define Newc(x,v,n,t,c)  (v = (c*)safemalloc((MEM_SIZE)((n) * sizeof(t))))
  107. #define Newz(x,v,n,t) (v = (t*)safemalloc((MEM_SIZE)((n) * sizeof(t)))), \
  108.     memzero((char*)(v), (n) * sizeof(t))
  109. #define Renew(v,n,t) (v = (t*)saferealloc((char*)(v),(MEM_SIZE)((n)*sizeof(t))))
  110. #define Renewc(v,n,t,c) (v = (c*)saferealloc((char*)(v),(MEM_SIZE)((n)*sizeof(t))))
  111. #else
  112. #define New(x,v,n,t)  (v = (t*)safemalloc(((unsigned long)(n) * sizeof(t))))
  113. #define Newc(x,v,n,t,c)  (v = (c*)safemalloc(((unsigned long)(n) * sizeof(t))))
  114. #define Newz(x,v,n,t) (v = (t*)safemalloc(((unsigned long)(n) * sizeof(t)))), \
  115.     memzero((char*)(v), (n) * sizeof(t))
  116. #define Renew(v,n,t) (v = (t*)saferealloc((char*)(v),((unsigned long)(n)*sizeof(t))))
  117. #define Renewc(v,n,t,c) (v = (c*)saferealloc((char*)(v),((unsigned long)(n)*sizeof(t))))
  118. #endif /* MSDOS */
  119. #define Safefree(d) safefree((char*)d)
  120. #define Str_new(x,len) str_new(len)
  121. #else /* LEAKTEST */
  122. char *safexmalloc();
  123. char *safexrealloc();
  124. void safexfree();
  125. #define New(x,v,n,t)  (v = (t*)safexmalloc(x,(MEM_SIZE)((n) * sizeof(t))))
  126. #define Newc(x,v,n,t,c)  (v = (c*)safexmalloc(x,(MEM_SIZE)((n) * sizeof(t))))
  127. #define Newz(x,v,n,t) (v = (t*)safexmalloc(x,(MEM_SIZE)((n) * sizeof(t)))), \
  128.     memzero((char*)(v), (n) * sizeof(t))
  129. #define Renew(v,n,t) (v = (t*)safexrealloc((char*)(v),(MEM_SIZE)((n)*sizeof(t))))
  130. #define Renewc(v,n,t,c) (v = (c*)safexrealloc((char*)(v),(MEM_SIZE)((n)*sizeof(t))))
  131. #define Safefree(d) safexfree((char*)d)
  132. #define Str_new(x,len) str_new(x,len)
  133. #define MAXXCOUNT 1200
  134. long xcount[MAXXCOUNT];
  135. long lastxcount[MAXXCOUNT];
  136. #endif /* LEAKTEST */
  137. #ifndef RESOLVE_MAC_CONFLICTS
  138. #define Move(s,d,n,t) (void)memmove((char*)(d),(char*)(s), (n) * sizeof(t))
  139. #endif
  140. #define Copy(s,d,n,t) (void)memcpy((char*)(d),(char*)(s), (n) * sizeof(t))
  141. #define Zero(d,n,t) (void)memzero((char*)(d), (n) * sizeof(t))
  142. #else /* lint */
  143. #define New(x,v,n,s) (v = Null(s *))
  144. #define Newc(x,v,n,s,c) (v = Null(s *))
  145. #define Newz(x,v,n,s) (v = Null(s *))
  146. #define Renew(v,n,s) (v = Null(s *))
  147. #define Move(s,d,n,t)
  148. #define Copy(s,d,n,t)
  149. #define Zero(d,n,t)
  150. #define Safefree(d) d = d
  151. #endif /* lint */
  152.  
  153. #ifdef STRUCTCOPY
  154. #define StructCopy(s,d,t) *((t*)(d)) = *((t*)(s))
  155. #else
  156. #define StructCopy(s,d,t) Copy(s,d,1,t)
  157. #endif
  158.